home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / insque.c,v < prev    next >
Text File  |  1992-11-21  |  2KB  |  97 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     92.11.21.18.25.47;  author mottsmth;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     92.11.21.18.21.56;  author mottsmth;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @Generic Queue Insertion
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @Function return type was struct qelem,
  28. not int, due to missing semi-colon !!!
  29. @
  30. text
  31. @/* 
  32.  * insque.c --
  33.  *
  34.  *    Source code for the "insque" library procedure.
  35.  *
  36.  * Copyright 1988 Regents of the University of California
  37.  * Permission to use, copy, modify, and distribute this
  38.  * software and its documentation for any purpose and without
  39.  * fee is hereby granted, provided that the above copyright
  40.  * notice appear in all copies.  The University of California
  41.  * makes no representations about the suitability of this
  42.  * software for any purpose.  It is provided "as is" without
  43.  * express or implied warranty.
  44.  */
  45.  
  46. #ifndef lint
  47. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/insque.c,v 1.1 92/11/21 18:21:56 mottsmth Exp Locker: mottsmth $ SPRITE (Berkeley)";
  48. #endif not lint
  49.  
  50. struct qelem {
  51.     struct qelem *q_forw;
  52.     struct qelem *q_back;
  53.     char q_data[4];
  54. };
  55.  
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * insque --
  61.  *
  62.  *    Insert a new element into a queue after a given predecessor.
  63.  *
  64.  * Results:
  65.  *    None.
  66.  *
  67.  * Side effects:
  68.  *    Elem is linked in after pred.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73. insque(elem, pred)
  74.     register struct qelem *elem;
  75.     register struct qelem *pred;
  76. {
  77.     elem->q_forw = pred->q_forw;
  78.     elem->q_back = pred;
  79.     pred->q_forw = elem;
  80.     elem->q_forw->q_back = elem;
  81. }
  82. @
  83.  
  84.  
  85. 1.1
  86. log
  87. @Initial revision
  88. @
  89. text
  90. @d17 1
  91. a17 1
  92. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  93. d24 1
  94. a24 1
  95. }
  96. @
  97.